home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 4 / Light ROM 4 - Disc 1.iso / text / maillist / 1995 / 122295.doc / 000288_lightwave@garcia.com _Sun Dec 31 04:38:54 1995.msg < prev    next >
Internet Message Format  |  1996-01-16  |  2KB

  1. Received: from relay5.UU.NET (relay5.UU.NET [192.48.96.15]) by keeper.albany.net (8.7.1/8.7.1) with ESMTP id EAA06668 for <dwarner@albany.net>; Sun, 31 Dec 1995 04:38:53 -0500 (EST)
  2. Received: from garcia.com by relay5.UU.NET with SMTP 
  3.     id QQzwly29162; Sun, 31 Dec 1995 04:32:21 -0500 (EST)
  4. Received: from  (localhost) by garcia.com (5.x/SMI-SVR4)
  5.     id AA11457; Sun, 31 Dec 1995 04:32:21 -0500
  6. Date: Sun, 31 Dec 1995 04:32:21 -0500
  7. Errors-To: dwarner@albany.net
  8. Message-Id: <Pine.SUN.3.91.951231025002.20190A-100000@access1.digex.net>
  9. Errors-To: dwarner@albany.net
  10. Reply-To: lightwave@garcia.com
  11. Originator: lightwave@garcia.com
  12. Sender: lightwave@garcia.com
  13. Precedence: bulk
  14. From: Ernie Wright <erniew@access.digex.net>
  15. To: Multiple recipients of list <lightwave@garcia.com>
  16. Subject: Re: Modeler Arexx
  17. X-Listprocessor-Version: 6.0c -- ListProcessor by Anastasios Kotsikonas
  18. Status: RO
  19. X-Status: 
  20.  
  21. j.follett@genie.com wrote:
  22.  
  23. > Some time ago I looked for an answer as to why the Modeler Arexx
  24. > function "call Delete()" would not work. After some troubleshooting,
  25. > I have discovered that by removing the "rexxsupport.library", the
  26. > delete function works. It appears that the "call Delete()" function
  27. > is being incorrectly intercepted by the rexxsupport.library, instead
  28. > of staying in the "LWModelerARexx.port".
  29. > Can someone explain what I can do to call the delete function
  30. > directly, so that I don't have to delete the rexxsupport library?
  31.  
  32. ARexx maintains a list of libraries and function hosts for resolving
  33. function calls.  The list is built through ADDLIB() calls, and one of
  34. ADDLIB()'s arguments is a priority setting.  Use a priority greater
  35. than 0 when you addlib "LWModelerARexx.port".  This ensures that the
  36. Modeler function host is tried before anything added at the default
  37. priority of 0.
  38.  
  39. Or, if your macro is unnecessarily adding rexxsupport.library, edit
  40. that out.  Or call REMLIB( "rexxsupport.library" ) at the start of the
  41. macro to clear it out of the library list--if your macro isn't putting
  42. it there, it's being left behind by a previous ARexx program.  In fact,
  43. you might want to track down which program this is and edit it to
  44. include a REMLIB() at its end.
  45.  
  46. - Ernie